home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / CBGRX103.ZIP / contrib / libgrx / src / p4pixset.c < prev    next >
Text File  |  1993-12-06  |  2KB  |  58 lines

  1. /** 
  2.  ** P4PIXSET.C 
  3.  **
  4.  **  Copyright (C) 1992, Csaba Biegl
  5.  **    820 Stirrup Dr, Nashville, TN, 37221
  6.  **    csaba@vuse.vanderbilt.edu
  7.  **
  8.  **  This file is distributed under the terms listed in the document
  9.  **  "copying.cb", available from the author at the address above.
  10.  **  A copy of "copying.cb" should accompany this file; if not, a copy
  11.  **  should be available from where this file was obtained.  This file
  12.  **  may not be distributed without a verbatim copy of "copying.cb".
  13.  **  You should also have received a copy of the GNU General Public
  14.  **  License along with this program (it is in the file "copying");
  15.  **  if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  16.  **  Cambridge, MA 02139, USA.
  17.  **
  18.  **  This program is distributed in the hope that it will be useful,
  19.  **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  **  GNU General Public License for more details.
  22.  **/
  23.  
  24. #include "p4.h"
  25.  
  26. void _GrP4SetPixel(long addr,int color)
  27. {
  28.     pixptr p = P_ADDRESS(CURC,addr);
  29.     int mask = 0x80 >> P_OFFSET(addr);
  30.     int opr  = C_OPER(color);
  31.     int plane;
  32.  
  33.     if(CURC->gc_onscreen) {
  34.         _SetVideoColor((color & 0x0f),opr);
  35.         _SetVGAWriteMask(mask);
  36.         (*p)++;
  37.         return;
  38.     }
  39.     opr <<= 1;
  40.     for(plane = 4; --plane >= 0; color >>= 1) {
  41.         switch(opr | (color & 1)) {
  42.           case C_XOR2+1:
  43.         *p ^= mask;
  44.         break;
  45.           case C_OR2+1:
  46.           case C_SET2+1:
  47.         *p |= mask;
  48.         break;
  49.           case C_AND2+0:
  50.           case C_SET2+0:
  51.         *p &= ~mask;
  52.         break;
  53.         }
  54.         p = (pixptr)((long)p + CURC->gc_planeoffset);
  55.     }
  56. }
  57.  
  58.